body {
	font-family: 'Georgia';
    background-color: #222222;
    color: #FFFFFF;
    font-style: normal;
    font-weight: 400;
    margin: 0;
	padding: 0;

    text-align:center;
}


/* Шапка сайта */
header{
    position: fixed;
    top: 0;
	height: 100px;
	width: 100%;
	margin: 0;  
    z-index: 1000;
	background: rgba(22, 22, 22, 0.7);
	filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.navigation-list{
	display: flex;
    height: 100px;
	justify-content: space-between;
    align-items:center;
	margin: 0;
	padding: 0;
	width: 60%;
	margin-left: auto;
	margin-right: auto;

} 
.navigation-list-item{
	margin-top: auto;
	margin-bottom: auto; 
	font-size: 16px;
	/* line-height: 18px; */
	line-height: 1.125em;
	list-style-type: none;
}
.navigation-list a{
	color:inherit;
	text-decoration: none;
}

.button-animation{
    position: relative;
	display: block;
}

.button-animation::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: -5%;
	width: 110%;
	height: 0.1em;
	background-color: white;
	transition: opacity 300ms, transform 300ms;
	opacity: 1;
  	transform: scale(0);
  	transform-origin: center;
  }
  
.button-animation:hover::after,
.button-animation:focus::after {
	transform: scale(1);
}

.logo-items-a{
    display: grid;
    position: relative;
    right: 8px;
    justify-items: center;
    gap: 5px;
}

/* Основное содержание */
h1 {
    font-size: 96px;
    line-height: 109px;
    font-weight: 400;
    margin: 0;
    margin-top: 100px;
    margin-bottom: 35px;
} 

.decoration{
    position: relative;
    margin-bottom: 54px;
}

.hero-photo{
    padding: 0;
    width: 900px;
    display: block;
    margin: 0 auto;
    margin-bottom: 100px;
}
/* Описание жизни */

.description{
    width: 750px;
    margin: 0 auto;
}
.description p{
    position: relative;
    text-align: left;
    margin: 0;
    padding: 0;
    margin-bottom: 100px;
    
}
.description p::after{
    position:absolute;
    left:0;
    bottom: 0px;
    width:480px;
    border-bottom:1px solid rgb(255, 255, 255);
    content:"";
}

b{
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
}
/* Описание событий*/
h2{
    margin: 0;
    font-weight: 400;
    font-size: 48px;
    line-height: 55px;
    margin-bottom: 40px;
}

h3{
    text-align: left;
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 38px;
    line-height: 43px;
}
.list-historical-events{
    display: grid;
    gap:50px;
    width: 1558px;
    margin: 0 auto;
    padding: 0;
    margin-bottom: 50px;
}
.list-historical-events-items{
    display: flex;
    justify-content: space-between;
}
.conteiner{
    display: flex;
    flex-direction: column;
    width: 600px;
}
.list-event-description-items{
    text-align: left;
    font-family: 'Georgia';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    list-style-type: disc;
}
.list-event-description-items:last-child{
    margin-top: 10px;
    position: relative;
}
/* .list-event-description-items:last-child::after{
    position:absolute;
    left: -13px;
    top: 10px;
    bottom: 0px;
    height: 90%;
    border-left:1px solid rgb(255, 255, 255);
    content:"";
} */
.list-historical-events-items:nth-child(2n) img{
    display: flex;
    order: -1;
}

/* Смерть */
.decoration-2{
    margin-bottom: 25px;
}
.list-death{
    width: 600px;
    padding: 0;
    margin: 0 auto;
    margin-bottom: 50px;
}
.list-death-items{
    text-align: left;
}
.list-death-items:last-child{
    margin-top: 15px;
}

figcaption{
    color: #A6A6A6;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
}

/* Возвращение на главную страницу */
.back{
    display: flex;
    font-size: 14px;
    line-height: 16px;
    justify-content: center;
    align-items:center;
    margin: 0;
    margin-top: 50px;
    margin-bottom: 45px;
    gap: 20px;
}
.back a{
    text-decoration: none;
    color: #FFFFFF;
    font-size: 32px;
    line-height: 36px;
    padding: 10px 40px;
    border: 1px solid #FFFFFF;
    transition: all 500ms ease;
}

.back a:hover {
	background: #FFFFFF;
	color: #222222;
}

/* Подвал */
footer{
    font-size: 10px;
	line-height: 11px;
	letter-spacing: 0.25em;
}

/* Запрет выделения */
.no-select{
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}


/* Попап событие */
.popup-event{
	display: none;
	width: 100%;
	height: 100%;
	z-index: 1010;
	background-color:#111111;
	position:absolute;
}
.popup-event-button-exit{
	display: block;
	color: #FFFFFF;
	padding: 10px;
	margin: 0 auto;
	margin-top: 5px;
	font-weight: 400;
	font-size: 32px;
	line-height: 36px;
	cursor: pointer;
	padding: 0px 25px;
	border:solid 1px #FFFFFF;
}
.popup-event-div{
	width: 80%;
	height: 80%;
	margin: 0 auto;
}
.popup-event-header{
	display: flex;
	justify-content: space-around;
	align-items: center;

}
.popup-event-listEvent{
	display: flex;
	position: relative;
	gap: 20px;
	margin: 0;
	padding: 0;
}

.popup-event-listEvent li{
	list-style-type: none;
}

.popup-event-listEvent li:nth-child(2n){
	list-style-type: none;
	position: relative;
	top:17px;
	/* width: 100px; 
	height: 100px;
	background: #83A7C9;
	border-radius: 50%; */
}
.popup-event-listEvent li:nth-child(2n) button{
	width: 15px; 
	height: 15px;
	position: relative;
	left: 10px;
	bottom: 32px;
	background: #ffffff;
	border-radius: 50%; 
	cursor: pointer;
}


.popup-event-listEvent li:nth-child(2n+1){
	list-style-type: none;
	position: relative;
	top:-15px
}

.popup-event-listEvent li:nth-child(2n+1) button{
	width: 15px; 
	height: 15px;
	position: relative;
	left: 12px;
	bottom: 0px;
	background: #ffffff;
	border-radius: 50%; 
	cursor: pointer;
}

.popup-event-listEvent .line{
	width: 100%;
	position: absolute;
	top:10px;
	border-bottom: solid 3px #ffffff;
}

.popup-event-main{
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.popup-event-main img{
    height: 70vh;
    flex-shrink: 0;
}
.popup-event-main p{
	width: 50%;
	
}


.popup-event-footer{
	position:absolute;
	bottom: 20px;
	z-index: 1001;
	width: 100%;
}
.popup-event-footer-p{

	text-align: center;
	font-weight: 400;
	font-size: 12px;
	line-height: 14px;
	letter-spacing: 0.75em;
}

.language{
	display: flex;
	position: absolute;
	top: 37%;
	right: 5%;
	gap: 10px;
	z-index: 1100;
}
.language li{
	list-style-type: none;
	font-size: 20px;
	/* line-height: 23px; */
	line-height: 1.15em;
}
.language  a{
	display: flex;
	text-decoration: none;
	background-color:rgba(255, 255, 255, 0.0);
	border:0px;
	color: #FFFFFF;
	padding:5px;
	gap: 5px;
}

button{
	display: flex;
	background-color:rgba(255, 255, 255, 0.0);
	border:0px;
	color: #FFFFFF;
	padding:5px;
	gap: 5px;
}

.language-button{
	position: relative;
}

.main-footer-one{
	text-align: center;
}